home *** CD-ROM | disk | FTP | other *** search
- /* $Id: $ */
- /**********************************************************************/
- /*
- * Final Copy II Arexx Macro - Make-Font-Reference
- *
- * Creates a table with all characters of a font
- * and how to get them.
- *
- * Requires: Final Copy II
- * Author: Stefan Winterstein (winter@cs.uni-sb.de)
- * Status: Public Domain
- *
- */
- /**********************************************************************/
- OPTIONS RESULTS
-
- /*
- * Here is the font you want to see:
- */
- SymbolFont = "SWOLFonts:Symbol"
- StandardFont = "SoftSans"
-
- chars.1 = "abcdefghijklmnopqrstuvwxyz1234567890ß\<,.-äöü#+[]/*"
- chars.2 = "ABCDEFGHIJKLMNOPQRSTUVWXYZ!" || '"' || "§$%&/()=?|>;:_ÄÖÜ^*{}/*" /* Shift */
- chars.3 = "º/*ð© ¡ £¸ø¶å®ßþµª°×±¤¹@³°¼½¾·«»-\<,./';[#][]/*" /* Alt */
- chars.4 = "ƺÇЩ ¦ £¿¯Ø¶Å®§Þµª°÷¬¥!²#¢%^&*()_|><>?"||'"'||":{^}{}/*" /* Shift Alt */
-
- qual.1 = ""
- qual.2 = "Shift-"
- qual.3 = "Alt-"
- qual.4 = "Alt-Sh-"
-
- TAB = '09'X
-
- /* trace ?r */
-
- DO pos=1 TO LENGTH(chars.1)
- DO i=1 TO 4
- char = SUBSTR(chars.i, pos, 1)
- Font SymbolFont
- FontSize 13
- Type char||TAB
- Font StandardFont
- FontSize 10
- Type qual.i || substr(chars.1, pos, 1)
- Type TAB||TAB
- END
- Backspace
- Backspace
- NewParagraph
- END
-